home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / IP_Graph3D / GraphController.h < prev    next >
Encoding:
Text File  |  1991-10-10  |  948 b   |  50 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <objc/Object.h>
  5. #import "typedefs.h"
  6. @interface GraphController:Object
  7. {
  8.     id graphViewPtr;
  9.     int    curGraph, detail, theta, phi, scale;
  10.     float perspective;
  11.     bigArray graphArray;
  12.     id thetaDisplayPtr;
  13.     id phiDisplayPtr;
  14.     id sizeDisplayPtr;
  15.     id detailDisplayPtr;
  16.     id thetaSliderPtr;
  17.     id phiSliderPtr;
  18. }
  19.  
  20. - init;
  21. - appDidInit: sender;
  22.  
  23. - selectFunction:sender;
  24.  
  25. - changePerspective: sender;
  26.  
  27. - slideThetaSlider: (int)val;
  28. - slidePhiSlider: (int)val;
  29. - updateThetaSlider: sender;
  30. - updatePhiSlider: sender;
  31. - updateSizeSlider: sender;
  32. - updateDetailSlider: sender;
  33.  
  34. - (int) readCurGraph;
  35. - (int) readDetail;
  36. - (int) readSize;
  37. - (int) readTheta;
  38. - (int) readPhi;
  39. - (float) readPerspective;
  40. - (bigArray) readGraphArray;
  41.  
  42. - writeCurGraph:(int) val;
  43. - writeSize:(int) val;
  44. - writeDetail:(int) val;
  45. - writeTheta:(int) val;
  46. - writePhi:(int) val;
  47. - writePerspective: (float) val;
  48.  
  49. @end
  50.